home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / SlightOHand.dxr / Internal_3_init game.ls < prev    next >
Encoding:
Text File  |  2002-01-31  |  467 b   |  24 lines

  1. global gBalls, gPlayerScore, gDealerScore, gProceed, gCupSprites, gPickCup, gCupsToMove, gButton, gHands, eatshit, gCountaWhat, speed, gCounta, gSpinCup, gMisses
  2.  
  3. on prepareFrame me
  4.   gBalls = []
  5.   speed = 10
  6.   gSpinCup = []
  7.   gPlayerScore = 0
  8.   gDealerScore = 0
  9.   gProceed = 1
  10.   gCupSprites = []
  11.   gPickCup = 0
  12.   gCupsToMove = []
  13.   gMisses = 0
  14.   gButton = [:]
  15.   gHands = [:]
  16.   eatshit = 0
  17.   gCounta = 0
  18.   gCountaWhat = 4
  19. end
  20.  
  21. on enterFrame me
  22.   go("begin play")
  23. end
  24.